@import url("./nav.css");
@import url("./footer.css");
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
}


.aboutcont{
    padding: 10px;
    height: max-content;
    width: 100%;
    /* border: 2px solid black; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    background-color: #47474717;
    box-shadow: 1px 1px 10px 1px gray;
    margin-bottom:10px;
    
    
}

.textdiv{
    /* border: 1px solid black; */
    
    height: max-content;
    width: 700px;
}

.textdiv h2{
    padding-left: 10px;
    color: #002147; 
    font-weight: bold;
    font-size: 25px; 
}

.textdiv p{
    margin-top: 10px;
    font-size: 17px;
    padding-left:10px; 
    font-family:"Rubik", Sans-serif ;
}


.abpimgdiv{
    background-color:whitesmoke;
    margin-top: 10px;
    border: 10px solid  #d5d5d5;
    box-shadow: 1px 2px 10px #d5d5d5;
    height: 388px;
    width: 540px;
    padding: 10px;
}



@media (max-width:1000px){
    .abpimgdiv{
        display: flex;
        flex-wrap: wrap;
        width:100%;
        object-fit: cover;
    }

    .abpimgdiv img{
        width: 100%;
    }
        


}






